home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Cafe 3
/
Visual Cafe 3.ISO
/
Vcafe
/
Main.bin
/
NotImplementedError.java
< prev
next >
Wrap
Text File
|
1998-09-08
|
486b
|
26 lines
package com.symantec.itools.lang;
/**
* @author Symantec Internet Tools Division
* @version 1.0
* @since VCafe 3.0
*/
public class NotImplementedError
extends Error
{
public NotImplementedError()
{
}
public NotImplementedError(String msg)
{
super(msg);
}
public NotImplementedError(ExecutionContext context)
{
super("Method not implemented " + context.getClazz() + "." + context.getMethod());
}
}